Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build independant linting system that will automatically lint all repos any repos in MatrixAI once imported #9

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
f6418cb
feat: initial commit
CDeltakai Mar 21, 2025
6b934a1
fix: deleted old index.js file
CDeltakai Mar 21, 2025
c8ecb57
fix: update @typescript-eslint dependencies to latest version
CDeltakai Mar 21, 2025
626a974
feat: update ESLint plugin structure and integrate with recommended c…
CDeltakai Mar 21, 2025
a482d69
feat: updated all packages in repo including linter and created a fla…
CDeltakai Mar 21, 2025
cbe4f51
fix: ran lint f
CDeltakai Mar 26, 2025
bd41999
fix: removed bench and test from package as they are unneeded
CDeltakai Mar 26, 2025
16c7e50
fix: changed the config bundle to be js instead of ts, removed the ex…
CDeltakai Mar 26, 2025
d25a039
fix: fixed import ordering
CDeltakai Mar 26, 2025
ed540cf
wip: replacing config bundle with config from zeta.house, removing pa…
CDeltakai Mar 27, 2025
ec8c017
fix: did a lintfix and removed unnecessary comments
CDeltakai Mar 27, 2025
d98df43
fix: did a lintfix
CDeltakai Mar 27, 2025
f385fa4
fix: fixed up formatting for eslint config
CDeltakai Mar 27, 2025
b39e15e
feat: adding generic test files and necessary packages
CDeltakai Mar 28, 2025
5fd8914
wip: fixing up ESM
tegefaulkes Mar 28, 2025
ae54301
fix: fixed issue with jest test not working correctly
CDeltakai Mar 28, 2025
99a7bc6
refactor: removed the recommendedTypeaware ruleset and instead merged…
CDeltakai Mar 28, 2025
3073893
fix: removed unused import
CDeltakai Mar 28, 2025
bd7cb3b
fix: deleted old .eslintrc file since it was no longer needed
CDeltakai Mar 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
177 changes: 0 additions & 177 deletions .eslintrc

This file was deleted.

196 changes: 196 additions & 0 deletions eslint.config.mjs
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The formatting in this file looks kinda weird. Are you sure the linting rules being used for this repo are also following the standards in other repos?

Original file line number Diff line number Diff line change
@@ -0,0 +1,196 @@
import path from 'path';
import { fileURLToPath } from 'url';
import globals from 'globals';
import _import from 'eslint-plugin-import';
import js from '@eslint/js';
import tsParser from '@typescript-eslint/parser';
import { FlatCompat } from '@eslint/eslintrc';
import { fixupPluginRules } from '@eslint/compat';

// eslint-disable-next-line @typescript-eslint/naming-convention
const __filename = fileURLToPath(import.meta.url);
// eslint-disable-next-line @typescript-eslint/naming-convention
const __dirname = path.dirname(__filename);
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all,
});

export default [
...compat.extends(
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
),
{
plugins: {
import: fixupPluginRules(_import),
},
languageOptions: {
globals: {
...globals.browser,
...globals.commonjs,
...globals.node,
...globals.jest,
},
parser: tsParser,
ecmaVersion: 5,
sourceType: 'module',
parserOptions: {
project: ['./tsconfig.json', './src/app/tsconfig.json'],
},
},
rules: {
'linebreak-style': ['error', 'unix'],
'no-empty': 1,
'no-useless-catch': 1,
'no-prototype-builtins': 1,
'no-constant-condition': 0,
'no-useless-escape': 0,
'no-console': 'error',
'no-restricted-globals': [
'error',
{
name: 'global',
message: 'Use `globalThis` instead',
},
{
name: 'window',
message: 'Use `globalThis` instead',
},
],
'prefer-rest-params': 0,
'require-yield': 0,
eqeqeq: ['error', 'smart'],
'spaced-comment': [
'warn',
'always',
{
line: {
exceptions: ['-'],
},
block: {
exceptions: ['*'],
},
markers: ['/'],
},
],
'capitalized-comments': [
'warn',
'always',
{
ignoreInlineComments: true,
ignoreConsecutiveComments: true,
},
],
curly: ['error', 'multi-line', 'consistent'],
'import/order': [
'error',
{
groups: [
'type',
'builtin',
'external',
'internal',
'index',
'sibling',
'parent',
'object',
],
pathGroups: [
{
pattern: '@',
group: 'internal',
},
{
pattern: '@/**',
group: 'internal',
},
],
pathGroupsExcludedImportTypes: ['type'],
'newlines-between': 'never',
},
],
'@typescript-eslint/no-require-imports': 0,
'@typescript-eslint/no-namespace': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/no-floating-promises': [
'error',
{
ignoreVoid: true,
ignoreIIFE: true,
},
],
'@typescript-eslint/no-misused-promises': [
'error',
{
checksVoidReturn: false,
},
],
'@typescript-eslint/await-thenable': ['error'],
'@typescript-eslint/no-unused-vars': [
'warn',
{
varsIgnorePattern: '^_',
argsIgnorePattern: '^_',
},
],
'@typescript-eslint/no-inferrable-types': 0,
'@typescript-eslint/no-non-null-assertion': 0,
'@typescript-eslint/no-this-alias': 0,
'@typescript-eslint/no-var-requires': 0,
'@typescript-eslint/no-empty-function': 0,
'@typescript-eslint/no-empty-interface': 0,
'@typescript-eslint/consistent-type-imports': ['error'],
'@typescript-eslint/consistent-type-exports': ['error'],
'no-throw-literal': 'off',
'@typescript-eslint/no-throw-literal': 'off',
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'function',
format: ['camelCase', 'PascalCase'],
leadingUnderscore: 'allow',
trailingUnderscore: 'allowSingleOrDouble',
},
{
selector: 'variable',
format: ['camelCase', 'UPPER_CASE', 'PascalCase'],
leadingUnderscore: 'allow',
trailingUnderscore: 'allowSingleOrDouble',
},
{
selector: 'parameter',
format: ['camelCase'],
leadingUnderscore: 'allow',
trailingUnderscore: 'allowSingleOrDouble',
},
{
selector: 'typeLike',
format: ['PascalCase'],
trailingUnderscore: 'allowSingleOrDouble',
},
{
selector: 'enumMember',
format: ['PascalCase', 'UPPER_CASE'],
},
{
selector: 'objectLiteralProperty',
format: null,
},
{
selector: 'typeProperty',
format: null,
},
],
'@typescript-eslint/ban-ts-comment': [
'error',
{
'ts-ignore': 'allow-with-description',
},
],
},
},
];
7 changes: 0 additions & 7 deletions index.js

This file was deleted.

2 changes: 1 addition & 1 deletion jest.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const config = {
// after the jest test environment is installed
// Can access globals
setupFilesAfterEnv: [
'jest-extended/all',
'jest-extended',
'<rootDir>/tests/setupAfterEnv.ts'
],
moduleNameMapper: {
Expand Down
Loading
Loading