DEV: prettier/eslint

This commit is contained in:
Joffrey JAFFEUX 2019-01-11 17:37:44 +01:00
parent 73d6b9fcad
commit a88b4cdf67
4 changed files with 1089 additions and 63 deletions

118
.eslintrc
View File

@ -10,67 +10,64 @@
"ecmaVersion": 7,
"sourceType": "module"
},
"globals":
{"Ember":true,
"jQuery":true,
"$":true,
"RSVP":true,
"Discourse":true,
"Em":true,
"PreloadStore":true,
"Handlebars":true,
"I18n":true,
"bootbox":true,
"module":true,
"moduleFor":true,
"moduleForComponent":true,
"Pretender":true,
"sandbox":true,
"controllerFor":true,
"test":true,
"ok":true,
"not":true,
"expect":true,
"equal":true,
"visit":true,
"andThen":true,
"click":true,
"currentPath":true,
"currentRouteName":true,
"currentURL":true,
"fillIn":true,
"keyEvent":true,
"triggerEvent":true,
"count":true,
"exists":true,
"visible":true,
"invisible":true,
"asyncRender":true,
"selectDropdown":true,
"asyncTestDiscourse":true,
"fixture":true,
"find":true,
"sinon":true,
"moment":true,
"start":true,
"_":true,
"alert":true,
"containsInstance":true,
"deepEqual":true,
"notEqual":true,
"define":true,
"require":true,
"requirejs":true,
"hasModule":true,
"Blob":true,
"File":true},
"globals": {
"Ember": true,
"jQuery": true,
"$": true,
"RSVP": true,
"Discourse": true,
"PreloadStore": true,
"Handlebars": true,
"I18n": true,
"bootbox": true,
"module": true,
"moduleFor": true,
"moduleForComponent": true,
"Pretender": true,
"sandbox": true,
"controllerFor": true,
"test": true,
"ok": true,
"not": true,
"expect": true,
"equal": true,
"visit": true,
"andThen": true,
"click": true,
"currentPath": true,
"currentRouteName": true,
"currentURL": true,
"fillIn": true,
"keyEvent": true,
"triggerEvent": true,
"count": true,
"exists": true,
"visible": true,
"invisible": true,
"asyncRender": true,
"selectDropdown": true,
"asyncTestDiscourse": true,
"fixture": true,
"find": true,
"sinon": true,
"moment": true,
"start": true,
"_": true,
"alert": true,
"containsInstance": true,
"deepEqual": true,
"notEqual": true,
"define": true,
"require": true,
"requirejs": true,
"hasModule": true,
"Blob": true,
"File": true
},
"rules": {
"block-scoped-var": 2,
"dot-notation": 0,
"eqeqeq": [
2,
"allow-null"
],
"eqeqeq": [2, "allow-null"],
"guard-for-in": 2,
"no-bitwise": 2,
"no-caller": 2,
@ -96,10 +93,7 @@
"semi": 2,
"strict": 0,
"valid-typeof": 2,
"wrap-iife": [
2,
"inside"
]
"wrap-iife": [2, "inside"]
},
"parser": "babel-eslint"
}

2
.gitignore vendored
View File

@ -5,5 +5,5 @@ auto_generated
Gemfile.lock
.DS_Store
*.swp
node_modules/
.rubocop-https---raw-githubusercontent-com-discourse-discourse-master--rubocop-yml

12
package.json Normal file
View File

@ -0,0 +1,12 @@
{
"name": "discourse",
"version": "1.0.0",
"repository": "git@github.com:discourse/discourse-cakeday.git",
"author": "Discourse",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^8.2",
"eslint": "^4.19",
"prettier": "1.14.3"
}
}

1020
yarn.lock Normal file

File diff suppressed because it is too large Load Diff