Skip to content

Commit

Permalink
Merge pull request #4 from LCOGT/feature/add-requestgroups-pages
Browse files Browse the repository at this point in the history
Feature/add requestgroups pages
  • Loading branch information
eheinrich committed Aug 27, 2020
2 parents b074963 + 1e6e40a commit 41c05a3
Show file tree
Hide file tree
Showing 67 changed files with 7,691 additions and 1,323 deletions.
28 changes: 18 additions & 10 deletions .eslintrc.js
@@ -1,28 +1,36 @@
module.exports = {
root: true,

env: {
node: true
},
'extends': [
'plugin:vue/essential',
'eslint:recommended'
],

extends: ['plugin:vue/recommended', 'eslint:recommended', '@vue/prettier'],

parserOptions: {
parser: 'babel-eslint'
},

rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'prettier/prettier': [
'warn',
{
singleQuote: true,
printWidth: 150,
tabWidth: 2,
trailingComma: 'none'
}
]
},

overrides: [
{
files: [
'**/__tests__/*.{j,t}s?(x)',
'**/tests/unit/**/*.spec.{j,t}s?(x)'
],
files: ['**/__tests__/*.{j,t}s?(x)', '**/tests/unit/**/*.spec.{j,t}s?(x)'],
env: {
mocha: true
}
}
]
}
};
7 changes: 6 additions & 1 deletion README.md
Expand Up @@ -61,5 +61,10 @@ npm run test:e2e

### Lints and fixes files
```
npm run lint
npm run lint:fix
```

### Checks for linting errors without fixing them
```
npm run lint:check
```
6 changes: 2 additions & 4 deletions babel.config.js
@@ -1,5 +1,3 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}
presets: ['@vue/cli-plugin-babel/preset']
};
181 changes: 180 additions & 1 deletion package-lock.json

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

0 comments on commit 41c05a3

Please sign in to comment.