Change naming and veriy test-scheduler function
[bottlenecks.git] / test-scheduler / ui / .eslintrc.js
1 // https://eslint.org/docs/user-guide/configuring
2
3 module.exports = {
4   root: true,
5   parserOptions: {
6     parser: 'babel-eslint'
7   },
8   env: {
9     browser: true,
10   },
11   extends: [
12     // https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
13     // consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
14     'plugin:vue/essential',
15     // https://github.com/standard/standard/blob/master/docs/RULES-en.md
16     'standard'
17   ],
18   // required to lint *.vue files
19   plugins: [
20     'vue'
21   ],
22   // add your custom rules here
23   rules: {
24     // allow async-await
25     'generator-star-spacing': 'off',
26     // allow debugger during development
27     'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
28   }
29 }