mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 22:21:55 +08:00
c45dbe4159
enable eol-last for eslint and ember-template-lint Fixed a handlful of .hbs files where newlines weren't present
19 lines
352 B
Plaintext
19 lines
352 B
Plaintext
{
|
|
"extends": "eslint-config-discourse",
|
|
"rules": {
|
|
"discourse-ember/global-ember": 2,
|
|
"eol-last": 2
|
|
},
|
|
"globals": {
|
|
"moduleFor": "off",
|
|
"moduleForComponent": "off",
|
|
"testStart": "off",
|
|
"testDone": "off",
|
|
"sinon": "off",
|
|
"currentURL": "off",
|
|
"invisible": "off",
|
|
"visible": "off",
|
|
"count": "off"
|
|
}
|
|
}
|