Enforce linebreak style (#1213)

* Now forcing Unix linebreak style.

* Added linebreak style for Solidity files.
pull/1068/head
Nicolás Venturo 7 years ago committed by GitHub
parent 4dcdd293e8
commit b59b43fa44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      .eslintrc
  2. 1
      .soliumrc.json

@ -32,6 +32,7 @@
"eqeqeq": ["error", "smart"],
"generator-star-spacing": ["error", "before"],
"indent": ["error", 2],
"linebreak-style": ["error", "unix"],
"max-len": ["error", 120, 2],
"no-debugger": "off",
"no-dupe-args": "error",

@ -4,6 +4,7 @@
"rules": {
"error-reason": "off",
"indentation": ["error", 2],
"linebreak-style": ["error", "unix"],
"max-len": ["error", 79],
"no-constant": ["error"],
"no-empty-blocks": "off",

Loading…
Cancel
Save