Skip to content

Commit

Permalink
Updates the eslint with single quotes 👍
Browse files Browse the repository at this point in the history
  • Loading branch information
peterramsing committed Nov 20, 2016
1 parent 7efee4a commit 5b32a4b
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .eslintrc.js
@@ -1,28 +1,28 @@
module.exports = {
"env": {
"es6": true,
"node": true
'env': {
'es6': true,
'node': true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
'extends': 'eslint:recommended',
'parserOptions': {
'sourceType': 'module'
},
"rules": {
"indent": [
"error",
'rules': {
'indent': [
'error',
2
],
"linebreak-style": [
"error",
"unix"
'linebreak-style': [
'error',
'unix'
],
"quotes": [
"error",
"single"
'quotes': [
'error',
'single'
],
"semi": [
"error",
"always"
'semi': [
'error',
'always'
]
}
};

0 comments on commit 5b32a4b

Please sign in to comment.