Skip to content

Commit

Permalink
Include package.json for dev
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanoverna committed Mar 25, 2020
1 parent c59ce4a commit cdfc5c7
Show file tree
Hide file tree
Showing 9 changed files with 41,538 additions and 11,146 deletions.
52 changes: 25 additions & 27 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,29 @@
// https://vuejs.github.io/vetur/linting-error.html#linting
// https://github.com/vuejs/eslint-plugin-vue/blob/v6.2.2/docs/user-guide/README.md
module.exports = {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:vue/recommended",
"plugin:prettier/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"vue"
],
"rules": {
// override/add rules settings here, such as:
// 'vue/no-unused-vars': 'error'
"vue/html-self-closing": "off",
"vue/require-default-prop": "off" // does not work well with prop types
}
env: {
browser: true,
es6: true,
node: true,
},
extends: [
"eslint:recommended",
"plugin:vue/recommended",
"plugin:prettier/recommended",
],
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly",
},
parserOptions: {
ecmaVersion: 2018,
sourceType: "module",
},
plugins: ["vue"],
rules: {
// override/add rules settings here, such as:
// 'vue/no-unused-vars': 'error'
"vue/html-self-closing": "off",
"vue/require-default-prop": "off", // does not work well with prop types
},
};
Loading

1 comment on commit cdfc5c7

@vercel
Copy link

@vercel vercel bot commented on cdfc5c7 Mar 25, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.