WPBP / WordPress-Plugin-Boilerplate-Powered

Wordpress Plugin Boilerplate but Powered with examples and a generator!
https://wpbp.github.io/
GNU General Public License v3.0
793 stars 114 forks source link

Update .editorconfig #175

Closed szepeviktor closed 4 years ago

szepeviktor commented 4 years ago

Please consider adding a CI step:

    steps:
      - name: "Checkout"
        uses: "actions/checkout@v2.3.1"

      - name: "Install NodeJS"
        uses: "actions/setup-node@v2-beta"
        with:
          node-version: '12'

      - name: "Install eclint"
        working-directory: "./plugin-name"
        run: "npm install --no-package-lock eclint"

      - name: "Check EditorConfig adherence"
        working-directory: "./plugin-name"
        run: "npx eclint check"

It checks all files, more than PHPCS.