我需要对接口或类型中的属性使用snake_case。我用来设置规则camelcase 'camelcase': ["error", {properties: "never"}], as it mentioned in docs。它不适用于接口和类型,但适用于JS对象。 export const test = {
a_b: 1, // OK. No error
};
export interface ITest {
a_b: number, // Identifier 'a_b' is not in camel
目前,我得到了这些衬里错误:
ESLint: UNSAFE_componentWillUpdate should be placed after someFunction (react/sort-comp)
和
ESLint: Identifier 'UNSAFE_componentWillUpdate' is not in camel case. (camelcase)
目前,我无法找到将正确的规则添加到.eslintrc以应用于预先添加的UNSAFE_组件生命周期。我试图使它同时适用于react/sort-comp和camelcase规则,任何线索/帮助都将不胜感激
我有一个12角解决方案,有两个项目:一个是库,另一个是应用程序。我把这些从tslint变成了eslint。我使用了以下命令:
ng add @angular-eslint/schematics
ng g @angular-eslint/schematics:convert-tslint-to-eslint my-app
ng g @angular-eslint/schematics:convert-tslint-to-eslint my-library
我的库使用了与应用程序不同的前缀。当我运行ng lint时,会得到以下错误:
The selector should start with o
我正在用vue-cli构建一个应用程序,使用airbnb规则进行链接。
尽管我在我的.eslintrc.js配置文件中添加了一个规则,并添加到其他文件上,但在我的Welcome.vue文件中的这个特定变量在链接时仍然会抛出一个警告。
警告:
warning: Identifier 'tables_count' is not in camel case (camelcase) at src\components\Welcome.vue:49:33:
47 | enableAll: function enableAll() {
48 | co
我已经下载了vuexy管理面板。然后,在cmd中,我导航到vuexy-全文版本,该版本位于vue-version>vuexy-bootstrapvue中,然后运行命令npm运行serve并得到此错误。
INFO Starting development server...
98% after emitting CopyPlugin
ERROR Failed to compile with 15 errors 12:07:27 PM
erro
在运行ng链接之后,我看到
/home/lans/projects/crm/new_frontend/src/app/modules/customers/list/list.component.html
228:12 warning Async pipe results should not be negated. Use (observable | async) === (false || null || undefined) to check its value instead @angular-eslint/template/no-negated-async
但是代码基本上是:
我正在用Node.js开发后端API。
有时,我无法进行单元测试,并且会发生data is not defined错误。
有了打字稿,我们就可以用皮棉系统来解决这个问题。
角度9项目,编译器系统检测到这个问题,并且,这个错误将自动解决。
但是,如何配置node.js项目呢?
我检查了esLint工具,但是,似乎使用了ts文件。