既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上大数据知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新
camelcase: 2, // 驼峰
indent: [2, 2], // 缩进2个空格
semi: [2, ‘never’], // 要求或禁止使用分号代替 ASI,即禁用行尾使用分号
quotes: [‘error’, ‘single’], // 强制使用一致的反勾号、双引号或单引号
‘no-debugger’: 2, // 不能debugg
‘no-empty’: 2, // 块语句中的内容不能为空
‘no-extra-parens’: 2, // 禁止非必要的括号
‘no-extra-semi’: 2, // 禁止多余的冒号
‘comma-dangle’: [2, ‘never’], // 键值对最后一个不能有,
‘spaced-comment’: [‘error’, ‘always’] // 注释必须空格
}
}
3. 建议使用 [VS Code]( ) 与 [ESLint]( ) 扩展一起使用。如果愿意,你可以在保存代码时启用自动修复和格式化:
{
“editor.codeActionsOnSave”: {
“source.fixAll”: false,
“source.fixAll.eslint”: true
}
}
4. 效果
![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/7c4d3c1302e94604a3413581159a644f.png#pic_center)
由于 `ESLint` 已经配置了代码格式化,所以没有必要使用 `Prettier` 来重复这个功能。要格式化代码,你可以运行 `yarn lint --fix`、`pnpm lint --fix` 或 `bun run lint --fix`,或者参考 `ESLint` 部分中的 `IDE` 设置。
如果你的编辑器中安装了 `Prettier`,请在项目中工作时禁用它,以避免冲突。
注意:[我们正在讨论]( )在将来启用 `Prettier`。
### 配置 Stylelint
1. 执行安装命令
pnpm add stylelint @nuxtjs/stylelint-module stylelint-config-standard stylelint-order stylelint-config-recommended-vue -D
2. 配置 `nuxt.config.ts`:
modules: [
// Simple usage
‘@nuxtjs/stylelint-module’,
// With options
[‘@nuxtjs/stylelint-module’, { /* module options */ }]
]
3. 新增 `.stylelintrc.cjs` 文件,具体配置请参考[Stylelint 配置]( ):
module.exports = {
extends: [‘stylelint-config-standard’,‘stylelint-config-recommended-vue’], // 这里保证 stylelint-config-recommended-vue 放在最后,不然 vue 文件会报错
plugins: [‘stylelint-order’],
rules: {
// 颜色指定大写
‘color-hex-case’: ‘upper’,
// 禁止空块
‘block-no-empty’: true,
// 颜色6位长度
‘color-hex-length’: ‘long’,
// 兼容自定义标签名
‘selector-type-no-unknown’: [
true,
{
ignoreTypes: []
}
],
// 忽略伪类选择器 ::v-deep
‘selector-pseudo-element-no-unknown’: [
true,
{
ignorePseudoElements: [‘v-deep’]
}
],
// 禁止低优先级的选择器出现在高优先级的选择器之后。
‘no-descending-specificity’: null,
// 不验证@未知的名字,为了兼容scss的函数
‘at-rule-no-unknown’: null,
// 禁止空注释
‘comment-no-empty’: true,
// 禁止简写属性的冗余值
‘shorthand-property-no-redundant-values’: true,
// 禁止值的浏览器引擎前缀
‘value-no-vendor-prefix’: true,
// property-no-vendor-prefix
‘property-no-vendor-prefix’: true,
// 禁止小于 1 的小数有一个前导零
‘number-leading-zero’: ‘never’,
// 禁止空第一行
‘no-empty-first-line’: true,
// 属性的排序
‘order/properties-order’: [
‘position’,
‘top’,
‘right’,
‘bottom’,
‘left’,
‘z-index’,
‘display’,
‘justify-content’,
‘align-items’,
‘float’,
‘clear’,
‘overflow’,
‘overflow-x’,
‘overflow-y’,
‘margin’,
‘margin-top’,
‘margin-right’,
‘margin-bottom’,
‘margin-left’,
‘border’,
‘border-style’,
‘border-width’,
‘border-color’,
‘border-top’,
‘border-top-style’,
‘border-top-width’,
‘border-top-color’,
‘border-right’,
‘border-right-style’,
‘border-right-width’,
‘border-right-color’,
‘border-bottom’,
‘border-bottom-style’,
‘border-bottom-width’,
‘border-bottom-color’,
‘border-left’,
‘border-left-style’,
‘border-left-width’,
‘border-left-color’,
‘border-radius’,
‘padding’,
‘padding-top’,
‘padding-right’,
‘padding-bottom’,
‘padding-left’,
‘width’,
‘min-width’,
‘max-width’,
‘height’,
‘min-height’,
‘max-height’,
‘font-size’,
‘font-family’,
‘font-weight’,
‘text-align’,
‘text-justify’,
‘text-indent’,
‘text-overflow’,
‘text-decoration’,
‘white-space’,
‘color’,
‘background’,
‘background-position’,
‘background-repeat’,
‘background-size’,
‘background-color’,
‘background-clip’,
‘opacity’,
‘filter’,
‘list-style’,
‘outline’,
‘visibility’,
‘box-shadow’,
‘text-shadow’,
‘resize’,
‘transition’
]
}
}
4. 向 `package.json` 的 `scripts` 中添加命令:
“lint:style”: “stylelint src/`/*.{css,less,vue} --fix”, // 这里记得修改 nuxt.config.ts 的 srcDir 值为 ‘src/’
>
> `stylelint` 的坑比较多,如果大家在配置后发现不生效,可以自行百度解决一下。
>
>
>
### 配置 Husky
1. 执行安装命令
pnpm add husky -D
2. 初始化脚本
pnpm exec husky init
完成之后会在根目录生成一个 `.husky` 文件夹。
### 配置 Lint-staged
1. 执行安装命令
pnpm add lint-staged -D
2. 向 `package.json` 的 `scripts` 中添加命令:
“pre-commit”: “lint-staged”
3. 可以根据项目需要在 `package.json` 中添加配置,或者根目录新建 `.lintstagedrc` 配置文件:
{
“lint-staged”: {
“*.{js,jsx,vue,ts,tsx}”: [
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
384)]
[外链图片转存中…(img-HLcMHiDv-1715680807384)]
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!