8000 Added evozonjs eslint support · evozonjs/javascript@6077c12 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6077c12

Browse files
committed
Added evozonjs eslint support
1 parent 6f05fb4 commit 6077c12

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
node_modules
2+
.idea

linters/.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Use this file as a starting point for your project's .eslintrc.
22
// Copy this file, and add rule overrides as needed.
33
{
4-
"extends": "airbnb"
4+
"extends": "evozonjs",
55
}

linters/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Our `.eslintrc` requires the following NPM packages:
44

55
```
66
npm install --save-dev \
7-
eslint-config-airbnb \
7+
eslint-config-evozonjs \
88
eslint \
99
babel-eslint \
1010
eslint-plugin-react

package.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "airbnb-style",
3-
"version": "2.0.0",
4-
"description": "A mostly reasonable approach to JavaScript.",
2+
"name": "evozonjs-style",
3+
"version": "1.0.0",
4+
"description": "A mostly reasonable approach to JavaScript forked from airbnb-style",
55
"scripts": {
66
"test": "echo \"Error: no test specified\" && exit 1",
77
"publish-all": "npm publish && cd ./packages/eslint-config-airbnb && npm publish"
@@ -20,6 +20,16 @@
2020
"jsx"
2121
],
2222
"author": "Harrison Shoff <hi@hshoff.com> (https://twitter.com/hshoff)",
23+
"contributors": [
24+
{
25+
"name": "Alex Pausan",
26+
"url": "https://github.com/alexpausan"
27+
},
28+
{
29+
"name": "Robert Richter",
30+
"url": "https://github.com/robi-richter"
31+
}
32+
],
2333
"license": "MIT",
2434
"bugs": {
2535
"url": "https://github.com/evozonjs/javascript/issues"

0 commit comments

Comments
 (0)
0