mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
34 lines
735 B
JavaScript
34 lines
735 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'plugin:vue/essential',
|
|
'@vue/airbnb',
|
|
],
|
|
parserOptions: {
|
|
parser: 'babel-eslint',
|
|
},
|
|
rules: {
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'linebreak-style': 'off',
|
|
'prefer-destructuring': 'off',
|
|
'vuejs-accessibility/click-events-have-key-events': 'off',
|
|
'vue/valid-v-slot': 'off',
|
|
'vue/multi-word-component-names': 'off',
|
|
},
|
|
overrides: [
|
|
{
|
|
files: [
|
|
'**/__tests__/*.{j,t}s?(x)',
|
|
'**/tests/unit/**/*.spec.{j,t}s?(x)',
|
|
],
|
|
env: {
|
|
mocha: true,
|
|
},
|
|
},
|
|
],
|
|
};
|