owlcode.tech/.eslintrc.js

27 lines
498 B
JavaScript
Raw Permalink Normal View History

2023-05-07 03:09:36 +02:00
module.exports = {
env: {
browser: true,
es2021: true
},
overrides: [
],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: 'tsconfig.json'
},
plugins: [ ],
rules: {
indent: ['error', 4, { SwitchCase: 1 }],
},
settings: {
'import/resolver': {
typescript: {
project: [
'tsconfig.json'
]
}
}
}
}