Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

eslint-plugin-roblox-ts

Package Overview
Dependencies
3
Maintainers
2
Versions
35
Issues
File Explorer

Advanced tools

eslint-plugin-roblox-ts

![lint rules demo](https://user-images.githubusercontent.com/15217173/64753460-ed490e80-d4e8-11e9-9af9-06fb1a0aceae.gif)

    0.0.35latest
    NPM

Version published
Maintainers
2
Weekly downloads
436
increased by14.14%

Weekly downloads

Readme

Source

eslint-plugin-roblox-ts

lint rules demo

What follows is an incomplete guide on how to get started using typescript-eslint with eslint-plugin-roblox-ts and prettier. We eventually plan to make a better guide and automate a number of these steps through rbxtsc command line options. But, for now, here is how to use these lint rules with VSCode.

Step 1: Install the ESLint plugin for VSCode

Install the following:

Step 2: Change your VSCode settings

Make sure the following settings are in your settings file (Ctrl + , to open the settings UI, then press the Open Settings (JSON) button in the top right).

These are according to my preferences, so feel free to change this according to your own desires:

"files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, "files.trimFinalNewlines": true, "[typescript]": { "editor.defaultFormatter": "dbaeumer.vscode-eslint", "editor.formatOnSave": true, "editor.formatOnPaste": true, "editor.formatOnType": true, }, "[typescriptreact]": { "editor.defaultFormatter": "dbaeumer.vscode-eslint", "editor.formatOnSave": true, "editor.formatOnPaste": true, "editor.formatOnType": true, }, "eslint.packageManager": "npm", "eslint.run": "onType", "eslint.format.enable": true,

Step 3: Setup the eslint config file

Make a file named .eslintrc and place this in the contents.

{ "parser": "@typescript-eslint/parser", "parserOptions": { "jsx": true, "useJSXTextNode": true, "ecmaVersion": 2018, "sourceType": "module", "project": "./tsconfig.json" }, "plugins": [ "roblox-ts", "@typescript-eslint", "@typescript-eslint/eslint-plugin", "prettier" ], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended", "plugin:roblox-ts/recommended" ], "rules": { "prettier/prettier": "warn", "@typescript-eslint/array-type": [ "warn", { "default": "generic", "readonly": "generic" } ], "@typescript-eslint/no-unused-vars": "off", "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/no-namespace": "off", "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-empty-function": "warn", "prefer-const": [ "warn", { "destructuring": "all" } ], "no-undef-init": "error" } }

If you have a pre-existing .prettierrc file, you can keep it, and eslint will pick it up and use that. If not, you can create it with this recommended config:

{ "semi": true, "trailingComma": "all", "singleQuote": false, "printWidth": 120, "tabWidth": 4, "useTabs": true }

Step 4: Install the necessary packages

Run the following command:

npm i -D eslint prettier @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-prettier eslint-plugin-prettier eslint-plugin-roblox-ts

Step 5: Reload window

Type Ctrl+Shift+P and select Developer: Reload Window.

FAQs

Last updated on 29 Nov 2022

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc