mirror of
https://github.com/fluencelabs/dashboard
synced 2025-03-16 21:30:49 +00:00
format .eslintrc.js
This commit is contained in:
parent
b0fc1c5715
commit
344ae0c981
49
.eslintrc.js
49
.eslintrc.js
@ -1,24 +1,29 @@
|
||||
module.exports = {
|
||||
parser: '@typescript-eslint/parser',
|
||||
parserOptions: {
|
||||
ecmaVersion: 12,
|
||||
sourceType: "module", // Allows for the use of imports
|
||||
},
|
||||
env: {
|
||||
browser: true,
|
||||
es2021: true,
|
||||
},
|
||||
extends: [
|
||||
'airbnb-base',
|
||||
'plugin:@typescript-eslint/eslint-recommended',
|
||||
'plugin:@typescript-eslint/recommended',
|
||||
// Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
|
||||
"plugin:prettier/recommended"
|
||||
],
|
||||
plugins: [
|
||||
'@typescript-eslint',
|
||||
'prettier'
|
||||
],
|
||||
rules: {
|
||||
},
|
||||
parser: '@typescript-eslint/parser',
|
||||
parserOptions: {
|
||||
ecmaVersion: 12,
|
||||
sourceType: 'module', // Allows for the use of imports
|
||||
},
|
||||
env: {
|
||||
browser: true,
|
||||
es2021: true,
|
||||
},
|
||||
extends: [
|
||||
'airbnb-base',
|
||||
'plugin:@typescript-eslint/eslint-recommended',
|
||||
'plugin:@typescript-eslint/recommended',
|
||||
// Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
|
||||
'plugin:prettier/recommended',
|
||||
],
|
||||
plugins: ['@typescript-eslint', 'prettier'],
|
||||
rules: {},
|
||||
settings: {
|
||||
// 'import/resolver': {
|
||||
// browser: {
|
||||
// extensions: ['.js', '.js', '.ts', '.ts', '.css', '.elm'],
|
||||
// paths: ['src'],
|
||||
// },
|
||||
// },
|
||||
'import/extensions': ['.js', '.ts'],
|
||||
},
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user