mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-20 05:14:26 +00:00
12 lines
327 B
JavaScript
12 lines
327 B
JavaScript
![]() |
module.exports = {
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
plugins: ['@typescript-eslint'],
|
||
|
extends: ['prettier', 'prettier/@typescript-eslint', 'eslint:recommended'],
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 6,
|
||
|
sourceType: 'module'
|
||
|
},
|
||
|
env: { jest: true, browser: true, node: true },
|
||
|
rules: { 'no-console': 'warn' }
|
||
|
};
|