Skip to content

Commit 9bd3b77

Browse files
committed
init
0 parents  commit 9bd3b77

File tree

3 files changed

+51
-0
lines changed

3 files changed

+51
-0
lines changed

.gitignore

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

index.js

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
'use strict'
2+
3+
module.exports = {
4+
extends: 'eslint:recommended',
5+
6+
env: {
7+
browser: true,
8+
node: true,
9+
es6: true
10+
},
11+
12+
parser: 'babel-eslint',
13+
14+
rules: {
15+
'array-bracket-spacing': [2, 'never'],
16+
'arrow-parens': [2, 'always'],
17+
'arrow-spacing': 2,
18+
'comma-dangle': 0,
19+
'no-console': 1,
20+
'no-const-assign': 2,
21+
'no-debugger': 1,
22+
'no-unused-vars': 1,
23+
'no-var': 2,
24+
'object-curly-spacing': [2, 'always'],
25+
'object-shorthand': [1, 'always'],
26+
'prefer-arrow-callback': 2,
27+
'prefer-const': 2,
28+
'quotes': [1, 'single'],
29+
'semi': [2, 'never'],
30+
'space-before-function-paren': [2, 'never'],
31+
'strict': [1, 'global'],
32+
'object-curly-spacing': [2, 'always'],
33+
'array-bracket-spacing': [2, 'never']
34+
}
35+
}

package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "eslint-config-profiscience",
3+
"version": "1.0.0",
4+
"description": "Shareable ESLint Config for Profisciencē",
5+
"main": "index.js",
6+
"keywords": [
7+
"eslint",
8+
"eslintconfig"
9+
],
10+
"author": "Casey Webb <[email protected]>",
11+
"license": "WTFPL",
12+
"dependencies": {
13+
"babel-eslint": "^6.0.4"
14+
}
15+
}

0 commit comments

Comments
 (0)