summaryrefslogtreecommitdiffstats
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-07-10 18:40:59 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-07-11 15:31:29 +0200
commit75f0d3c093de01365f85e8e3035291d9a9a8c889 (patch)
treeb84b25a2e6eb16c00a74fd6db8b0f446ef661a03 /.eslintrc.js
parent3f3ad0eeb8e01fe725a89ad196d23f22ad33de41 (diff)
Vue cleanup and init
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js53
1 files changed, 53 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
new file mode 100644
index 00000000..31213019
--- /dev/null
+++ b/.eslintrc.js
@@ -0,0 +1,53 @@
+module.exports = {
+ root: true,
+ env: {
+ browser: true,
+ es6: true,
+ node: true,
+ jest: true
+ },
+ globals: {
+ t: false,
+ n: false,
+ OC: false,
+ OCA: false
+ },
+ parserOptions: {
+ parser: 'babel-eslint'
+ },
+ extends: [
+ 'eslint:recommended',
+ 'plugin:node/recommended',
+ 'plugin:vue/recommended',
+ 'standard'
+ ],
+ plugins: ['vue', 'node'],
+ rules: {
+ // space before function ()
+ 'space-before-function-paren': ['error', 'never'],
+ // curly braces always space
+ 'object-curly-spacing': ['error', 'always'],
+ // stay consistent with array brackets
+ 'array-bracket-newline': ['error', 'consistent'],
+ // 1tbs brace style
+ 'brace-style': 'error',
+ // tabs only
+ indent: ['error', 'tab'],
+ 'no-tabs': 0,
+ // es6 import/export and require
+ 'node/no-unpublished-require': ['off'],
+ 'node/no-unsupported-features': ['off'],
+ // vue format
+ 'vue/html-indent': ['error', 'tab'],
+ 'vue/max-attributes-per-line': [
+ 'error',
+ {
+ singleline: 3,
+ multiline: {
+ max: 3,
+ allowFirstLine: true
+ }
+ }
+ ]
+ }
+};