repos
/ timestrap-django master

timestrap-django

mirror archived upstream

Time tracking you can host anywhere, built on Django. Full export support in multiple formats and easily extensible.

djangodockerhandcodedpythonself-hostedtime-trackingtimetracker

755 B · 32 lines Raw History
 1{
 2  "rules": {
 3    "linebreak-style": ["error", "unix"],
 4    "indent": ["error", 2],
 5    "semi": ["error", "always"],
 6    "comma-dangle": ["error", "always-multiline"],
 7    "array-bracket-spacing": ["error", "never"],
 8    "object-curly-spacing": ["error", "never"],
 9    "vue/html-indent": ["error", 2],
10    "vue/require-prop-types": "off"
11  },
12  "env": {
13    "browser": true,
14    "commonjs": true,
15    "es6": true,
16    "jquery": true
17  },
18  "globals": {
19    "timestrapConfig": true,
20    "process": true,
21    "__dirname": true
22  },
23  "parser": "vue-eslint-parser",
24  "extends": ["plugin:vue/recommended", "eslint:recommended"],
25  "plugins": ["vue"],
26  "parserOptions": {
27    "parser": "babel-eslint",
28    "ecmaVersion": 6,
29    "sourceType": "module"
30  }
31}