Skip to content

Commit

Permalink
Bump version v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tuan149 authored and github-actions[bot] committed Apr 5, 2024
1 parent 15d7320 commit ed06ac0
Show file tree
Hide file tree
Showing 10,336 changed files with 1,903,783 additions and 840 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/.temp
/node_modules
/index.*
76 changes: 76 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
"use strict"

/** @type {import('eslint').Linter.Config} */
module.exports = {
root: true,
extends: "plugin:@eslint-community/mysticatea/es2018",
parserOptions: {
project: "./tsconfig.eslint.json",
},
settings: {
node: {
tryExtensions: [
".js",
".json",
".mjs",
".node",
".ts",
".tsx",
".vue",
],
},
},
rules: {
// TSC does this
"no-redeclare": "off",
// https://github.com/typescript-eslint/typescript-eslint/issues/743
"@eslint-community/mysticatea/ts/unbound-method": "off",

// Temporary disabled rule: Making a type stricter requires a breaking change of the types.
"@eslint-community/mysticatea/ts/prefer-readonly-parameter-types":
"off",
// Should be fixed by `@eslint-community/eslint-plugin-mysticatea`
"no-duplicate-imports": "off",
"@eslint-community/mysticatea/ts/no-duplicate-imports": [
"error",
{ includeExports: true },
],
},
overrides: [
{
files: "./scripts/clone-without-circular.ts",
// Temporarily disable these rules until we fix the `any` usage
rules: {
"@eslint-community/mysticatea/eslint-comments/no-use": "off",
"@eslint-community/mysticatea/ts/no-unsafe-argument": "off",
"@eslint-community/mysticatea/ts/no-unsafe-assignment": "off",
"@eslint-community/mysticatea/ts/no-unsafe-member-access":
"off",
"@eslint-community/mysticatea/ts/no-unsafe-return": "off",
},
},
{
files: ["./scripts/extract-test262.ts"],
// Disables rules that cannot resolve reports due to missing library type definitions.
rules: {
"@eslint-community/mysticatea/ts/ban-ts-comment": "off",
"@eslint-community/mysticatea/ts/no-unsafe-assignment": "off",
"@eslint-community/mysticatea/ts/no-unsafe-call": "off",
},
},

{
files: "./src/unicode/ids.ts",
rules: {
curly: "off",
"no-misleading-character-class": "off",
},
},
{
files: "./src/unicode/property-data.ts",
rules: {
"@eslint-community/mysticatea/ts/camelcase": "off",
},
},
],
}
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
311 changes: 0 additions & 311 deletions .github/action/action.js

This file was deleted.

0 comments on commit ed06ac0

Please sign in to comment.