|
@@ -1,22 +1,22 @@
|
|
module.exports = {
|
|
module.exports = {
|
|
env: {
|
|
env: {
|
|
- es6: true,
|
|
|
|
|
|
+ es6: true
|
|
},
|
|
},
|
|
globals: {
|
|
globals: {
|
|
Atomics: 'readonly',
|
|
Atomics: 'readonly',
|
|
- SharedArrayBuffer: 'readonly',
|
|
|
|
|
|
+ SharedArrayBuffer: 'readonly'
|
|
},
|
|
},
|
|
parser: '@typescript-eslint/parser',
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
parserOptions: {
|
|
ecmaFeatures: {
|
|
ecmaFeatures: {
|
|
- jsx: true,
|
|
|
|
|
|
+ jsx: true
|
|
},
|
|
},
|
|
ecmaVersion: 2019,
|
|
ecmaVersion: 2019,
|
|
- sourceType: 'module',
|
|
|
|
|
|
+ sourceType: 'module'
|
|
},
|
|
},
|
|
extends: [
|
|
extends: [
|
|
'plugin:react/recommended',
|
|
'plugin:react/recommended',
|
|
- 'standard',
|
|
|
|
|
|
+ 'standard'
|
|
|
|
|
|
// jsx-a11y conflicts with pioneer rules. At time of writing
|
|
// jsx-a11y conflicts with pioneer rules. At time of writing
|
|
// 84 problems -> We want to avoid as much as possible changing code in pioneer at least
|
|
// 84 problems -> We want to avoid as much as possible changing code in pioneer at least
|
|
@@ -33,6 +33,6 @@ module.exports = {
|
|
],
|
|
],
|
|
plugins: [],
|
|
plugins: [],
|
|
settings: {
|
|
settings: {
|
|
- version: 'detect',
|
|
|
|
- },
|
|
|
|
|
|
+ version: 'detect'
|
|
|
|
+ }
|
|
}
|
|
}
|