IDL SuiteCloud Ignore List

In the SuiteCloud Eclipse IDE for NetSuite, what is the ignore list setting in Settings> NetSuite> Validation? Is this one file that behaves like, say, .gitignore? Or is this an explicit list of files to ignore?

I suspect this option is the reason that Eclipse always creates libraries and other files, which I did not explicitly talk about in my NetSuite projects.

Can someone give some clarity regarding the use of this field?

Attempt 1

I tried to set this preference to a single file with the following contents:

**/*.min.js
**/*.lib.js
**/docs/**
**/Third Party/**
**/node_modules/**
**/bower_components/**
**/*jquery*
**/*moment*
**/*lodash*

. , , . , (docstrap.lib.js), IDE , SuiteScript.

2

:

**/*.min.js,**/*.lib.js,**/docs/**,...

:

3

SuiteScript blanket.min.js . :

/blanket.min.js
./blanket.min.js
*blanket.min.js
blanket.min.js
"blanket.min.js"
*blanket*
**/blanket*
*/blanket*
.\blanket.min.js
**\blanket*
*\blanket*
\blanket.min.js
\blanket*
.\blanket*
C:\Development\Projects\validator-test\blanket.min.js
C:/Development/Projects/validator-test/blanket.min.js

blanket.min.js . , .

+4
1

SuiteCloud IDE (IDE), IDE script API SuiteScript 1.0. ...

nlapiLogRecord('customrecord_foo');

customrecord_foo , IDE. IDE customrecord_foo, .

script .

customrecord_foo
customrecord_bar

script IDE.

+1

All Articles