Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .eslintrc

This file was deleted.

5 changes: 5 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Use this file as a starting point for your project's .eslintrc.
// Copy this file, and add rule overrides as needed.
{
"extends": "airbnb"
}
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
install:
yarn install

lint:
yarn lint

test:
yarn test
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "Create an object with zealous property accessor. Prevent getting nonexistent property by throwing a ReferenceError.",
"main": "zealit.js",
"scripts": {
"lint": "eslint '*.js'",
"test": "node test.js"
},
"author": "",
Expand All @@ -14,11 +15,11 @@
"url": "https://github.com/Bootstragram/zealit"
},
"devDependencies": {
"eslint": "~3.6.1",
"eslint-config-airbnb": "~12.0.0",
"eslint-plugin-import": "~1.16.0",
"eslint-plugin-jsx-a11y": "~2.2.2",
"eslint-plugin-react": "~6.3.0"
"eslint": "~6.1.0",
"eslint-config-airbnb": "~17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3"
},
"dependencies": {
"traverse": "0.6.6"
Expand Down
Loading