nrwl/workshop-nx-starter

Linting fails with default install

Opened this issue · 1 comments

note: on the master branch:

> nx lint && ng lint

All files in 'apps' and 'libs' must be part of a project:
The 'libs/shared-assets/logo.png' file doesn't belong to any project.
The 'libs/styles/main.scss' file doesn't belong to any project.

this sounds like related topic:
nrwl/nx#429

This can be solved by using a lib without any builder configured:

    "shared": {
      "root": "libs/shared",
      "sourceRoot": "libs/shared/src",
      "projectType": "library",
      "prefix": "tuskdesk-suite",
      "architect": {},
      "schematics": {}
    }

screenshot 2019-03-05 at 07 49 01

As this seems to be a common problem, can this be discussed as part of nx workspace routines?
#1
nrwl/nx#429

and that one:
nrwl/nx#54 (comment)