@fdawgs/eslint-config
v2.0.1
Published
@fdawgs' shareable flat ESLint config
Readme
@fdawgs/eslint-config
@fdawgs' shareable flat ESLint config
Overview
This package provides a shareable ESLint config that can be used across multiple projects. It is designed to enforce consistent coding styles across personal and professional projects, ensuring that code is clean, readable, and maintainable.
Installation
Install using npm:
npm i @fdawgs/eslint-configExample usage
Import the package inside of an eslint.config.js file as shown in the ESLint documentation and it will apply the rules defined in the @fdawgs/eslint-config package to your project:
import { defineConfig } from "eslint/config";
import fdawgs from "@fdawgs/eslint-config";
const config = defineConfig([
{
files: ["**/*.js"],
extends: [fdawgs],
},
]);
export default config;Contributing
Contributions are welcome, and any help is greatly appreciated!
See the contributing guide for details on how to get started. Please adhere to this project's Code of Conduct when contributing.
License
@fdawgs/eslint-config is licensed under the MIT license.
