Whalebird-desktop-client-ma.../.eslintrc.js

36 lines
816 B
JavaScript
Raw Normal View History

2018-03-07 14:28:48 +01:00
module.exports = {
root: true,
parser: 'vue-eslint-parser',
2018-03-07 14:28:48 +01:00
parserOptions: {
parser: '@typescript-eslint/parser',
2018-03-07 14:28:48 +01:00
sourceType: 'module'
},
env: {
browser: true,
node: true
},
2019-04-20 06:39:26 +02:00
extends: ['standard', 'prettier'],
2018-03-07 14:28:48 +01:00
globals: {
__static: true
},
2019-04-20 06:39:26 +02:00
plugins: ['@typescript-eslint', 'prettier'],
rules: {
2018-03-07 14:28:48 +01:00
// allow paren-less arrow functions
'arrow-parens': 0,
// allow async-await
'generator-star-spacing': 0,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
2019-04-20 06:39:26 +02:00
argsIgnorePattern: '^_'
}
],
2019-04-20 06:39:26 +02:00
camelcase: 'off',
'@typescript-eslint/camelcase': 'off',
'space-before-function-paren': 'off'
2018-03-07 14:28:48 +01:00
}
}