You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
887 B
JSON
39 lines
887 B
JSON
{
|
|
"files.exclude": {
|
|
// 📙 sub-libs
|
|
// "tools": true,
|
|
".design": true,
|
|
|
|
// ⚙️ config
|
|
"**/**/*code-workspace": true,
|
|
".cocorc": true,
|
|
// "**/**/package.json": true,
|
|
|
|
// 🔄️ CI/CD
|
|
".github": true,
|
|
|
|
// 🧼 linters & styles
|
|
"**/**/.prettierrc": true,
|
|
"**/**/*.eslintrc.*": true,
|
|
".prettierignore": true,
|
|
|
|
// 📝 readmes
|
|
// "**/**/README.md": true,
|
|
"LICENSE": true,
|
|
|
|
// 🗑️
|
|
"node_modules": true,
|
|
"package-lock.json": true,
|
|
// ".gitignore": true,
|
|
".git": true,
|
|
// "dist": true,
|
|
".vscode": true,
|
|
|
|
// 🧪 tests
|
|
"**/**/test": true,
|
|
"**/**/tests": true,
|
|
"**/**/*.specs.ts": true,
|
|
"**/**/*.specs.js": true,
|
|
},
|
|
"scss.lint.emptyRules": "ignore"
|
|
} |