mirror of
https://github.com/fluencelabs/dashboard
synced 2024-12-04 23:30:20 +00:00
30 lines
933 B
JavaScript
30 lines
933 B
JavaScript
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: {},
|
|
settings: {
|
|
// 'import/resolver': {
|
|
// browser: {
|
|
// extensions: ['.js', '.js', '.ts', '.ts', '.css', '.elm'],
|
|
// paths: ['src'],
|
|
// },
|
|
// },
|
|
'import/extensions': ['.js', '.ts'],
|
|
},
|
|
};
|