Skip to content

Commit

Permalink
libraries config
Browse files Browse the repository at this point in the history
  • Loading branch information
ppillot committed Apr 7, 2019
1 parent d898d4a commit 1e6eb99
Show file tree
Hide file tree
Showing 7 changed files with 236 additions and 16 deletions.
2 changes: 2 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
VUE_APP_I18N_LOCALE=en
VUE_APP_I18N_FALLBACK_LOCALE=en
18 changes: 16 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,22 @@ module.exports = {
'@vue/typescript'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
'no-console': 'off',
'no-debugger': 'off',
'vue/attribute-hyphenation': 'warning',
'vue/html-closing-bracket-newline': 'warning',
'vue/html-quotes': 'error',
'vue/multiline-html-element-content-newline': 'warning',
'vue/mustache-interpolation-spacing': 'error',
'vue/name-property-casing': 'error',
'vue/no-spaces-around-equal-signs-in-attribute': 'error',
'vue/no-template-shadow': 'error',
'vue/prop-name-casing': 'error',
'vue/require-default-prop': 'warning',
'vue/require-prop-types': 'warning',
'vue/no-v-html': 'warning',
'vue/this-in-template': 'warning',
'vue/camelcase': 'error'
},
parserOptions: {
parser: '@typescript-eslint/parser'
Expand Down
204 changes: 193 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1e6eb99

Please sign in to comment.