forked from joy-of-react/project-wordle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enforce single attribute per line in JS, JSX & Vue (#23)
* Enforce single attribute per line in JS, JSX & Vue * Run Prettier after config change
- Loading branch information
1 parent
345b03c
commit a6b64df
Showing
4 changed files
with
12 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
{ | ||
"singleAttributePerLine": true, | ||
"useTabs": true, | ||
"overrides": [ | ||
{ | ||
"files": ["*.html", "*.css"], | ||
"options": { | ||
"printWidth": 999999 | ||
"printWidth": 9999 | ||
} | ||
}, | ||
{ | ||
"files": ["*.js", "*.jsx", "*.vue"], | ||
"options": { "singleAttributePerLine": true } | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters