Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-gjs

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-gjs

Adds compatibility for the GJS (Gnome JavaScript) environment.

  • 1.0.4
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

eslint-plugin-gjs

Adds compatibility for the GJS (Gnome JavaScript) environment.

Development & Bugs

Report bugs, explore the source, and contribute on the GitHub.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-gjs:

$ npm install eslint-plugin-gjs --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-gjs globally.

Usage

Add gjs to the plugins section of your .eslintrc configuration file. Depending on your use case, add either plugin:gjs/extension or plugin:gjs/application to your extends section.

{
    "plugins": ["gjs"],
    "extends": [ "plugin:gjs/extension" ]
}

The plugin automatically imports all relevant rules. If you would like to avoid this, add gjs/application or gjs/shell-extension to your env section. Then remove "extends": [ "plugin:gjs/extension" ].

{
    "plugins": ["gjs"],
    "env": {
        "es6": true,
        "gjs/application": true
    }
}

You can also add gjs/cairo or gjs/girepository to your env to enable the relevant globals.

Supported Rules

  • gjs/no-computed-properties
  • gjs/no-generators
  • gjs/no-invalid-regexp
  • gjs/no-js-class
  • gjs/no-modules
  • gjs/no-numeric-literals
  • gjs/no-spread
  • gjs/no-super
  • gjs/no-template-strings
  • gjs/translation-strings
  • DEPRECATED: gjs/no-unsupported-syntax

Not Implemented

  • Lang.Class member formatting
  • Object literal formatting (unlikely to be implemented)
  • Lang.bind enforcement for closures
  • Prohibit Promise, Symbol, and WeakSet globals.

Keywords

FAQs

Package last updated on 12 Nov 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc