Skip to content

Commit

Permalink
more explicit configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanahamilton committed Nov 3, 2020
1 parent 9f3ea12 commit ee319c5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions airflow/www/.eslintrc
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
{
"extends": "airbnb-base",
"parser": "babel-eslint",
"plugins": [ "html" ],
"plugins": [
"html",
"import",
"node",
"promise",
"standard",
],
"settings": {
"import/resolver": {
node: {},
webpack: {},
"node": {},
"webpack": {},
},
},
}
2 changes: 1 addition & 1 deletion airflow/www/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"dev": "NODE_ENV=dev webpack --watch --colors --progress --debug --output-pathinfo --devtool eval-cheap-source-map --mode development",
"prod": "NODE_ENV=production node --max_old_space_size=4096 ./node_modules/webpack/bin/webpack.js -p --colors --progress",
"build": "NODE_ENV=production webpack --colors --progress",
"lint": "eslint --ignore-path=.eslintignore --ext .js,.html .",
"lint": "eslint --ignore-path=.eslintignore --ext .js .",
"lint:fix": "eslint --fix --ignore-path=.eslintignore --ext .js,.html ."
},
"author": "Apache",
Expand Down

0 comments on commit ee319c5

Please sign in to comment.