Skip to content

Commit 3ceb2a7

Browse files
authored
fix(repo): Fix ESLint errors and use ESLint in lint-staged (#1756)
1 parent 5e67c6e commit 3ceb2a7

File tree

78 files changed

+454
-225
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+454
-225
lines changed

.changeset/thick-jokes-smile.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@clerk/clerk-js': patch
3+
---
4+
5+
Some minor TypeScript type fixes to internal components. Also applying some ESLint recommendations.

.eslintignore

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
coverage
2-
node_modules
3-
dist
4-
build
5-
coverage
1+
**/coverage/**
2+
**/node_modules/**
3+
packages/*/dist/**
4+
**/dist/*
5+
**/build/*
66
playground
77
packages/*/examples
88
.github

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ dist
55
tmp
66
out-tsc
77
out
8+
**/dist/*
9+
**/build/*
10+
packages/*/dist/**
811

912
# dependencies
1013
node_modules
14+
**/node_modules/**
1115

1216
# IDEs and editors
1317
.idea
@@ -34,6 +38,7 @@ npm-debug.log
3438
yarn-error.log
3539
testem.log
3640
/typings
41+
**/coverage/**
3742

3843
# System Files
3944
.DS_Store
@@ -51,7 +56,6 @@ Thumbs.db
5156
.turbo
5257

5358
lerna-debug.log
54-
packages/*/coverage
5559
.next
5660
.dev.vars
5761
.env.local

.lintstagedrc.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"*.{js,jsx,ts,tsx,json,md}": ["npx prettier --write"]
2+
"*.{js,jsx,ts,tsx}": ["npx prettier --write", "npx eslint --fix"],
3+
"*.{json,md,mdx}": ["npx prettier --write"]
34
}

LICENCE.md LICENSE

File renamed without changes.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ It'll show you how to make changes to the SDKs, open pull requests, or submittin
6767

6868
This project is licensed under the **MIT license**.
6969

70-
See [LICENSE](https://github.com/clerkinc/javascript/blob/main/LICENCE.md) for more information.
70+
See [LICENSE](https://github.com/clerkinc/javascript/blob/main/LICENSE) for more information.

commitlint.config.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable @typescript-eslint/no-var-requires */
12
const glob = require('glob');
23
const fs = require('fs');
34

@@ -7,12 +8,15 @@ const getPackageNames = () => {
78
return names.map(n => n.split('/').pop());
89
};
910

11+
/**
12+
* @type {import('@commitlint/types').UserConfig}
13+
*/
1014
module.exports = {
1115
extends: ['@commitlint/config-conventional'],
1216
rules: {
1317
'subject-case': [2, 'always', ['sentence-case']],
1418
'body-max-line-length': [1, 'always', '150'],
1519
'scope-empty': [2, 'never'],
16-
'scope-enum': async ctx => [2, 'always', [...getPackageNames(), 'repo', 'release']],
20+
'scope-enum': [2, 'always', [...getPackageNames(), 'repo', 'release']],
1721
},
1822
};

0 commit comments

Comments
 (0)