mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 13:58:25 -04:00
26 lines
680 B
JSON
26 lines
680 B
JSON
{
|
|
"editor.tabSize": 2,
|
|
"editor.insertSpaces": true,
|
|
"editor.rulers": [120],
|
|
"files.associations": {
|
|
"*.mdx": "markdown"
|
|
},
|
|
"files.eol": "\n",
|
|
"files.insertFinalNewline": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"search.exclude": {
|
|
"**/.next": true,
|
|
"**/node_modules": true
|
|
},
|
|
"css.validate": false,
|
|
"scss.validate": false,
|
|
"prettier.requireConfig": true,
|
|
"prettier.configPath": ".prettierrc.json",
|
|
"stylelint.packageManager": "yarn",
|
|
"stylelint.reportNeedlessDisables": true,
|
|
"stylelint.reportInvalidScopeDisables": true,
|
|
"stylelint.validate": ["css", "scss"],
|
|
"npm.packageManager": "yarn",
|
|
"eslint.packageManager": "yarn"
|
|
}
|