Skip to content

Commit

Permalink
[CLI] Remove quotes from some fields in .eslint.js
Browse files Browse the repository at this point in the history
  • Loading branch information
fer22f committed Oct 26, 2019
1 parent e0d93cf commit 1ee4294
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions packages/cli/src/generate/specs/app/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
'env': {
env: {
'browser': true,
'es6': true,
'node': true
Expand All @@ -10,15 +10,15 @@ module.exports = {
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
'parser': '@typescript-eslint/parser',
'parserOptions': {
'project': 'tsconfig.json',
'sourceType': 'module'
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
sourceType: 'module'
},
'plugins': [
plugins: [
'@typescript-eslint'
],
'rules': {
rules: {
'@typescript-eslint/array-type': 'error',
'@typescript-eslint/explicit-member-accessibility': [
'error', { 'accessibility': 'no-public' }
Expand Down
14 changes: 7 additions & 7 deletions packages/cli/src/generate/templates/app/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
'env': {
env: {
'browser': true,
'es6': true,
'node': true
Expand All @@ -10,15 +10,15 @@ module.exports = {
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
'parser': '@typescript-eslint/parser',
'parserOptions': {
'project': 'tsconfig.json',
'sourceType': 'module'
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
sourceType: 'module'
},
'plugins': [
plugins: [
'@typescript-eslint'
],
'rules': {
rules: {
'@typescript-eslint/array-type': 'error',
'@typescript-eslint/explicit-member-accessibility': [
'error', { 'accessibility': 'no-public' }
Expand Down

0 comments on commit 1ee4294

Please sign in to comment.