Joseph Hale's Technical Blog
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: update code style config

Cotes Chung (Mar 11, 2023, 1:55 AM +0800) 002f0253 968c13ec

+19 -3
+5
.browserslistrc
··· 1 + # https://github.com/browserslist/browserslist#browserslistrc 2 + 3 + last 2 versions 4 + > 0.2% 5 + not dead
+5 -2
.editorconfig
··· 9 9 end_of_line = lf 10 10 insert_final_newline = true 11 11 12 - [*.js] 13 - indent_size = 4 12 + [*.{js,css,scss}] 13 + quote_type = single 14 + 15 + [*.{yml,yaml}] 16 + quote_type = double 14 17 15 18 [*.md] 16 19 trim_trailing_whitespace = false
+3
.prettierrc
··· 1 + { 2 + "trailingComma": "none" 3 + }
+6 -1
.stylelintrc.json
··· 11 11 "alpha-value-notation": "number", 12 12 "selector-not-notation": "simple", 13 13 "color-hex-length": "long", 14 - "declaration-block-single-line-max-declarations": 3 14 + "declaration-block-single-line-max-declarations": 3, 15 + "scss/operator-no-newline-after": null, 16 + "rule-empty-line-before": [ 17 + "always", 18 + { "ignore": ["after-comment", "first-nested", "inside-block"] } 19 + ] 15 20 } 16 21 }