All checks were successful
Build and Push Docker Image / docker (push) Successful in 21s
28 lines
700 B
JavaScript
28 lines
700 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
es2023: true,
|
|
browser: true,
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 2023,
|
|
sourceType: 'module',
|
|
},
|
|
ignores: ['data/**', 'public/**/vendor/**', 'scripts/**/tmp/**', 'tmp/**'],
|
|
plugins: ['import'],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:import/recommended',
|
|
'plugin:import/errors',
|
|
'plugin:import/warnings',
|
|
'plugin:import/typescript',
|
|
'prettier',
|
|
],
|
|
rules: {
|
|
'no-unused-vars': ['warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
|
|
'no-console': 'off',
|
|
'import/no-unresolved': 'off',
|
|
},
|
|
};
|