Git Product home page Git Product logo

shareable-configs's People

Contributors

renovate[bot] avatar sayakie avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

shareable-configs's Issues

"require" and "import" fields that are exporting the actual configuration are in reversed order

That is all in the title as I said. "require" and "import" fields that are exporting the actual configuration are in reversed order.

"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./import": {
"import": "./dist/import.js",
"require": "./dist/import.mjs",
"types": "./dist/import.d.ts"
}
},

"exports": {
"import": "./dist/index.js",
"require": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},

Allow `StrictPascalCase` format that matches `enumMember`

Currently, we cannot use [Strict]PascalCase format that matches enumMember. @dareharu/eslint-config always enforces us to use PascalCase format.

We assume there is so awesome if we could be used this feature:

export const enum BrandingColor {
  Primary = 0x06d6a0,
  Secondary = 0xa08de9,
  Info = 0x608bda,
  Warn = 0xf1c40f,
  Danger = 0xe22b46
}

Linter complains that interface name must not start with upper-cased alphabet

ESLint complains to us that the interface name must not start with an upper-cased alphabet. For example,

interface ConsumeRange {
  offset?: number
  take?: number
}

interface GetDocumentsOptions extends ConsumeRange {
  cache?: boolean
  exclude?: string[]
}

The ConsumeRange and GetDocumentsOptions interfaces are invalid since @dareharu/eslint-config enforces the rule that interface name must not match the RegExp: /^[A-Z]/u.

This behavior is invalid action so should be resolved as soon as possible.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.