@devkong/cli-nx 0.0.67-alpha.14 → 0.0.67-alpha.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devkong/cli-nx",
3
- "version": "0.0.67-alpha.14",
3
+ "version": "0.0.67-alpha.16",
4
4
  "type": "commonjs",
5
5
  "main": "./src/index.js",
6
6
  "typings": "./src/index.d.ts",
@@ -2,11 +2,13 @@ pluginManagement {
2
2
  val quarkusVersion: String by settings
3
3
  val kotlinVersion: String by settings
4
4
  val nxGradleVersion: String by settings
5
+ val jlleitschuhGradlePluginVersion: String by settings
5
6
 
6
7
  plugins {
7
8
  id("org.jetbrains.kotlin.jvm") version kotlinVersion
8
9
  id("org.jetbrains.kotlin.plugin.allopen") version kotlinVersion
9
10
  id("dev.nx.gradle.project-graph") version nxGradleVersion
10
11
  id("io.quarkus") version quarkusVersion
12
+ id("org.jlleitschuh.gradle.ktlint") version jlleitschuhGradlePluginVersion
11
13
  }
12
14
  }
@@ -20,10 +20,6 @@ load-plugins=
20
20
  # number of processors available to use.
21
21
  jobs=1
22
22
 
23
- # When enabled, pylint would attempt to guess common misconfiguration and emit
24
- # user-friendly hints instead of false-positive error messages.
25
- suggestion-mode=yes
26
-
27
23
  # Allow loading of arbitrary C extensions. Extensions are imported into the
28
24
  # active Python interpreter and may run arbitrary code.
29
25
  unsafe-load-any-extension=no