Skip to content
Permalink
Browse files
Added parser to eslint to support fields in classes
  • Loading branch information
pastorpv committed Nov 25, 2019
1 parent ed95e54 commit 2b6e0968a405fcc1880e99a427cd6b11eec2a419
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
@@ -7,6 +7,7 @@
"browser": true,
"jest": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2018,
"noInlineConfig": true,
@@ -1,7 +1,7 @@
{
"name": "MyMusic",
"name": "my_music",
"version": "1.1.3",
"description": "MyMusic Project",
"description": "My Music Project",
"main": "index.js",
"engines": {
"node": "13.x"
@@ -10,7 +10,7 @@
"start": "node index.js",
"jsdoc": "node_modules/.bin/jsdoc -c jsdoc.conf",
"linter": "node_modules/.bin/eslint .",
"unit": "./node_modules/.bin/jest --coverage 'unit tests/'"
"unit": "node_modules/.bin/jest --coverage 'unit tests/'"
},
"jest": {
"projects": [
@@ -35,10 +35,10 @@
"markdownlint-cli": "^0.18.0",
"mime-types": "^2.1.25",
"sqlite": "^3.0.3",
"sqlite-async": "^1.0.12",
"sqlite3": "^4.1.0"
"sqlite-async": "^1.0.12"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^5.15.2",
"handlebars-validate": "^0.1.2",
"http-status-codes": "^1.3.2",

0 comments on commit 2b6e096

Please sign in to comment.