npm i --save @nativescript/eslint-plugin
- 版本:0.0.4
- GitHub:
- NPM: https://npmjs.net.cn/package/%40nativescript%2Feslint-plugin
- 下载
- 昨日:0
- 上周:0
- 上个月:0
NativeScript ESLint 插件
适用于 NativeScript 项目的 ESLint 规则。
安装和设置
- 安装
npm i -D @nativescript/eslint-plugin @typescript-eslint/parser eslint
- 添加一个包含以下内容的
.eslintrc.json
配置文件。
.eslintrc.json
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2015
},
"plugins": ["@nativescript"],
"extends": [
"plugin:@nativescript/recommended"
]
}
- 检查项目。
npx eslint --ext=ts src/
注意,您需要提供源代码的路径。在上面的示例中,我们使用 src/
。请将其更改为与您的项目设置匹配。
- 修复所有可自动修复的问题。
npx eslint --ext=ts --fix src/
- [可选] 设置 VSCode 以使用
eslint
。
- 安装
dbaeumer.vscode-eslint
扩展。 - 将以下内容添加到您的
settings.json
文件中
"eslint.validate": [ "typescript", "javascript" ],